home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 1 / Pier Shareware 1.iso / 007a / asc2c176.exe / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-11-20  |  1KB  |  107 lines

  1. @echo off
  2. cls
  3. echo     Asc2com Installation
  4. echo     Invoke install with the drive letter you wish to install on.  
  5. echo     (E.G. if you wish to install on drive D, you would type "install D"
  6. echo     at the DOS command line.  Choices are Drives A-E).
  7. echo  
  8. echo     Warning:  this batch file makes a subdirectory called ASC2COM on the
  9. echo     target drive. 
  10. echo   
  11. echo   
  12. echo   
  13. echo   
  14. echo  
  15. paws
  16.  
  17. if %1==A goto doA
  18. if %1==B goto doB
  19. if %1==C goto doC
  20. if %1==D goto doD
  21. if %1==E goto doE
  22. goto FINAL
  23.  
  24. :doA
  25. A:
  26. mkdir asc2com
  27. insert disk in Drive B
  28. B:
  29. copy *.* a:\asc2com
  30. goto ENDD
  31.  
  32. :doB
  33. B:
  34. mkdir asc2com
  35. echo insert disk in Drive A
  36. pause
  37. A:
  38. copy *.* b:\asc2com
  39. goto ENDD
  40.  
  41. :doC
  42. C:
  43. mkdir asc2com
  44. echo insert disk in Drive A
  45. pause
  46. A:
  47. copy *.* c:\asc2com
  48. goto ENDD
  49.  
  50. :doD
  51. D:
  52. mkdir asc2com
  53. echo insert disk in Drive A
  54. pause
  55. A:
  56. copy *.* d:\asc2com
  57. goto ENDD
  58.  
  59. :doE
  60. E:
  61. mkdir asc2com
  62. echo insert disk in Drive A
  63. pause
  64. A:
  65. copy *.* e:\asc2com
  66. goto ENDD
  67.  
  68.  
  69. :ENDD
  70. echo  
  71. echo  
  72. echo  
  73. echo Running A2CInst......
  74. if %1==A goto InstA
  75. if %1==B goto InstB
  76. if %1==C goto InstC
  77. if %1==D goto InstD
  78. if %1==E goto InstE
  79. goto OUT
  80.  
  81. :InstA
  82. A:
  83. goto OUT
  84.  
  85. :InstB
  86. B:
  87. goto OUT
  88.  
  89. :InstC
  90. C:
  91. goto OUT
  92.  
  93. :InstD
  94. D:
  95. goto OUT
  96.  
  97. :InstE
  98. E:
  99.  
  100. :OUT
  101. paws
  102. cd\asc2com
  103. a2cinst
  104.  
  105.  
  106. :FINAL
  107.